forked from AlessioM/numpy_json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 775 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
from setuptools import setup
if __name__ == "__main__":
setup(name="numpy_json",
version='0.1',
long_description=open("README.md").read(),
py_modules=['numpy_json'],
author="AlessioM",
url='https://github.com/AlessioM/numpy_json',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python :: 2'
],
install_requires=["numpy", "json"],
platforms=['unix', 'linux', 'osx', 'win32'],
)