-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.18 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.18 KB
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
from setuptools import setup
with open('README.rst', encoding='utf-8') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst', encoding='utf-8') as history_file:
history = history_file.read()
setup(
name='FuncArray',
author="Leonardo Niccolò Ialongo",
author_email='leonardo.ialongo@gmail.com',
python_requires='>=3.0',
version='0.0.1',
url='https://github.com/LeonardoIalongo/FuncArray',
description=("A functional array class with elements computed on demand."),
long_description=readme + '\n\n' + history,
long_description_content_type='text/x-rst',
license="GNU General Public License v3",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
],
packages=['funcarray'],
package_dir={'': 'src'},
install_requires=["numpy>=1.15",
],
)