-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 818 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
33
34
35
36
37
from setuptools import setup
install_requires = [
'lz4==3.1.0',
'pydub==0.24.1',
]
test_require = [
'pytest==6.2.5',
]
extras_require = {
'test': test_require,
}
def long_description():
with open('README.md', encoding='utf-8') as f:
return f.read()
setup(
name='nxpy',
version='0.0.1',
author='Sebastian Dang',
author_email='SebastianDang@users.noreply.github.com',
description='A python Nx parser',
long_description=long_description(),
long_description_content_type='text/markdown',
url = "https://github.com/SebastianDang/nxpy",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=['nxpy'],
install_requires=install_requires,
extras_require=extras_require
)