-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
74 lines (69 loc) · 2.45 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
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import codecs
from setuptools import setup, find_packages
NAME = 'itemlang'
DESC = 'item language: compiler and validator'
VERSION = '0.0'
AUTHOR = 'Pierre Bayerl'
AUTHOR_EMAIL = 'pierre DOT bayerl AT googlemail DOT com'
LICENSE = 'MIT'
URL = 'https://github.com/goto40/itemlang'
DOWNLOAD_URL = 'https://github.com/goto40/itemlang/archive/v{0}.tar.gz'.format(VERSION)
README = codecs.open(os.path.join(os.path.dirname(__file__), 'README.rst'),
'r', encoding='utf-8').read()
if sys.argv[-1].startswith('publish'):
if os.system('pip list | grep wheel'):
print('wheel not installed.\nUse `pip install wheel`.\nExiting.')
sys.exit()
if os.system('pip list | grep twine'):
print('twine not installed.\nUse `pip install twine`.\nExiting.')
sys.exit()
os.system('python setup.py sdist bdist_wheel')
if sys.argv[-1] == 'publishtest':
os.system('twine upload -r test dist/*')
else:
os.system('twine upload dist/*')
print('You probably want to also tag the version now:')
print(' git tag -a {0} -m "version {0}"'.format(VERSION))
print(' git push --tags')
sys.exit()
my_packages = find_packages(exclude=['tests.*', 'tests'])
print('packages = {}'.format(my_packages))
setup(
name=NAME,
version=VERSION,
description=DESC,
long_description=README,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=AUTHOR,
maintainer_email=AUTHOR_EMAIL,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
packages=my_packages,
package_data={'': ['*.tx', '*.template', 'support_*_code/**/*']},
install_requires=['textX', 'jinja2', 'numpy', 'pytest'],
keywords='idl',
entry_points={
'console_scripts': [
'itemc = itemlang.commands.console:itemc',
'algoc = itemlang.commands.console:algoc'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Interpreters',
'Topic :: Software Development :: Compilers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)