-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1009 Bytes
/
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
from setuptools import setup, find_packages
def readme():
with open("README.rst") as f:
return f.read()
exec(open("bitwise/_version.py").read())
setup(
name="bitwise",
version=__version__,
description="Bitwise is a library for utilizing Python as a hardware description language",
long_description=readme(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules"
],
keywords="bitwise hardware design",
url="https://github.com/jamesjiang52/Bitwise",
author="James Jiang",
author_email="jamesjiang52@gmail.com",
license="MIT",
packages=find_packages(),
install_requires=[],
include_package_data=True,
zip_safe=False
)