forked from kevinpt/symbolator
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·60 lines (50 loc) · 1.77 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
import sys
try:
from setuptools import setup
except ImportError:
sys.exit('ERROR: setuptools is required.\nTry using "pip install setuptools".')
# Use README.rst for the long description
with open('README.rst') as fh:
long_description = fh.read()
def get_package_version(verfile):
'''Scan the script for the version string'''
version = None
with open(verfile) as fh:
try:
version = [line.split('=')[1].strip().strip("'") for line in fh if \
line.startswith('__version__')][0]
except IndexError:
pass
return version
version = get_package_version('symbolator.py')
if version is None:
raise RuntimeError('Unable to find version string in file: {0}'.format(version_file))
setup(name='symbolator',
version=version,
author='Kevin Thibedeau',
author_email='[email protected]',
url='http://kevinpt.github.io/symbolator',
download_url='http://kevinpt.github.io/symbolator',
description='HDL symbol generator',
long_description=long_description,
platforms = ['Any'],
install_requires = ['hdlparse>=1.0.4'],
packages = ['nucanvas', 'nucanvas/color', 'symbolator_sphinx'],
py_modules = ['symbolator'],
entry_points = {
'console_scripts': ['symbolator = symbolator:main']
},
include_package_data = True,
use_2to3 = False,
keywords='HDL symbol',
license='MIT',
classifiers=['Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Graphics',
'Topic :: Software Development :: Documentation',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'
]
)