-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 1.38 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
import setuptools
with open('README.md') as fh:
long_description = fh.read()
def _requires_from_file(filename):
return open(filename).read().splitlines()
setuptools.setup(
name='ffptutils',
version='0.1.3',
author='Hideki Sekine',
author_email='sekineh@me.com',
description='a python library that reads and writes Spirent iTest ParameterTree (.ffpt) files',
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sekineh/ffptutils-py",
packages=setuptools.find_packages(),
install_requires=_requires_from_file('requirements.txt'),
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Telecommunications Industry",
"Topic :: Utilities",
],
python_requires='>=3.6',
entry_points={ # Optional
'console_scripts': [
'ffpt2csv=ffptutils.scripts.ffpt2csv:main',
'csv2ffpt=ffptutils.scripts.csv2ffpt:main',
],
},
project_urls={ # Optional
'Bug Reports': 'https://github.com/sekineh/ffptutils-py/issues',
# 'Funding': 'https://donate.pypi.org',
# 'Say Thanks!': 'http://saythanks.io/to/example',
'Source': 'https://github.com/sekineh/ffptutils-py/',
},
)