-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
59 lines (53 loc) · 1.89 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import pip
from setuptools import find_packages, setup
_BIGARRAY_VERSION = '0.2.2'
# ===========================================================================
# Main
# ===========================================================================
with open('README.md') as readme_file:
readme = readme_file.read()
author = 'Trung Ngo.T.'
requirements = ["numpy>=1.15.0", "six>=1.12.0"]
setup(
author=author,
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
],
description=
"Fast and scalable array for machine learning and artificial intelligence",
long_description=readme,
long_description_content_type='text/markdown',
setup_requires=['pip>=19.0'],
install_requires=requirements,
license="Apache License 2.0",
include_package_data=True,
keywords='bigarray',
name='bigarray',
packages=find_packages(),
test_suite='tests',
url='https://github.com/trungnt13/bigarray',
version=_BIGARRAY_VERSION,
zip_safe=False,
)