Remove comment sign and add correct path for nmigen intersphinx.
[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 "Operating System :: OS Independent",
28 ],
29 keywords='nmigen utilities',
30 author='Luke Kenneth Casson Leighton',
31 author_email='lkcl@libre-soc.org',
32 url='http://git.libre-soc.org/?p=nmutil.git',
33 license='LGPLv3+',
34 packages=find_packages('src'),
35 package_dir = {'': 'src'},
36 include_package_data=True,
37 zip_safe=False,
38 install_requires=install_requires,
39 tests_require=test_requires,
40 test_suite='nose.collector',
41 )