forked from honzakral/rcomments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (35 loc) · 938 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
33
34
35
36
37
38
39
40
41
from os.path import join, dirname
from setuptools import setup
VERSION = (0, 0, 1)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
f = open(join(dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
install_requires = [
'Django',
]
test_requires = [
'nose',
'coverage',
]
setup(
name = 'rcomments',
description = "rcomments",
url = "https://github.com/YOU/rcomments/",
long_description = long_description,
version = __versionstr__,
author = "YOU",
author_email = "[email protected]",
packages = ['rcomments'],
zip_safe = False,
include_package_data = True,
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Operating System :: OS Independent",
],
install_requires=install_requires,
test_suite='test_rcomments.run_tests.run_all',
test_requires=test_requires,
)