forked from westerndigitalcorporation/pyvcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.54 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
# encoding: utf-8
from setuptools import setup
setup(
name='pyvcd',
author='Peter Grayson',
author_email='[email protected]',
description='Python VCD file support.',
long_description='\n\n'.join(
open(f, 'rb').read().decode('utf-8')
for f in ['README.rst', 'LICENSE.txt']),
url='http://pyvcd.readthedocs.io/en/latest/',
download_url='https://github.com/SanDisk-Open-Source/pyvcd',
license='MIT',
setup_requires=['setuptools_scm'],
use_scm_version=True,
install_requires=['six'],
packages=['vcd'],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Electronic Design Automation '
'(EDA)',
],
)