speed up ==, hash, <, >, <=, and >= for plain_data
[nmutil.git] / setup.py
1 from setuptools import setup, find_packages
2 import sys, os
3
4 here = os.path.abspath(os.path.dirname(__file__))
5 README = open(os.path.join(here, 'README.md')).read()
6 NEWS = open(os.path.join(here, 'NEWS.txt')).read()
7
8 version = '0.0.1'
9
10 install_requires = [
11 'pyvcd', # for stylish GTKWave documents - available on Pypi
12 ]
13
14 test_requires = [
15 'nose',
16 ]
17
18 setup(
19 name='libresoc-nmutil',
20 version=version,
21 description="A nmigen utility library",
22 long_description=README + '\n\n' + NEWS,
23 classifiers=[
24 "Topic :: Software Development :: Libraries",
25 "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
26 "Programming Language :: Python :: 3",
27 ],
28 keywords='nmigen utilities',
29 author='Luke Kenneth Casson Leighton',
30 author_email='lkcl@libre-soc.org',
31 url='http://git.libre-soc.org/?p=nmutil.git',
32 license='LGPLv3+',
33 packages=find_packages('src'),
34 package_dir = {'': 'src'},
35 include_package_data=True,
36 zip_safe=False,
37 install_requires=install_requires,
38 tests_require=test_requires,
39 test_suite='nose.collector',
40 )