-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
21 lines (18 loc) · 805 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from setuptools import setup
with open("Readme.md", "r") as fh:
long_description = fh.read()
setup(name='sociophysicsDataHandler',
description="Data retriever package for the Sociophysics course at TU/Eindhoven.",
version='1.4.2',
author='Alessandro Corbetta; Cas Pouw; Joris Willems',
author_email='[email protected]',
url='https://github.com/acorbe/sociophysicsDataHandler/archive/refs/tags/v1.4.2.tar.gz',
long_description = long_description,
long_description_content_type="text/markdown",
packages=['sociophysicsDataHandler'],
license="new BSD",
install_requires=['numpy>=1.8', 'matplotlib>=2.0'
, 'scipy>=1.4', 'pyocclient', 'pyarrow'
, 'pandas', 'pillow']
)