-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (56 loc) · 1.93 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
import os
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
import pyconst
tests_requires = [
'pytest==3.0.3',
'pytest-cov==2.4.0',
]
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = ['tests', '--cov=pyconst', '-vrsx']
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
def readme():
try:
os.system('pandoc --from=markdown --to=rst README.md -o README.rst')
with open('README.rst') as f:
return f.read()
except:
return '''PyConst one simple way to organize the constants'''
setup(name='pyconst',
url='https://github.com/valdergallo/pyconst',
download_url='https://github.com/valdergallo/pyconst/tarball/%s/' % pyconst.get_version(),
author="valdergallo",
author_email='[email protected]',
keywords=['constants', 'django', 'data', 'control'],
description='PyConst one simple way to organize the constants',
license='GPL-3.0',
long_description=readme(),
classifiers=[
'Framework :: Django',
'Operating System :: OS Independent',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
include_package_data=True,
version=pyconst.get_version(),
tests_require=tests_requires,
cmdclass={'test': PyTest},
packages=['pyconst'],
zip_safe=False,
platforms='any',
)