forked from TwigWorld/ya-dancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 796 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
#!/usr/bin/env python
from setuptools import setup
version = "1.1.0"
readme = open('README.md').read()
setup(
name='ya-dancer',
version=version,
description='Get a response json reflecting the current status of the site.',
long_description=readme,
author='David Paule',
author_email='[email protected]',
url='https://github.com/TwigWorld/ya-dancer',
packages=[
'ya_dancer',
],
include_package_data=True,
install_requires=[
],
zip_safe=False,
keywords='ya-dancer',
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
],
)