-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (29 loc) · 1.25 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
from setuptools import setup, find_packages
import pathlib
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup( name = 'insidapy',
version = '0.2.9',
description = 'Module for in-silico data generation in python.',
long_description = long_description,
long_description_content_type = "text/markdown",
author = 'Tim Forster',
license = 'MIT',
packages = find_packages(),
project_urls = {
"Homepage": "https://github.com/forstertim/insidapy",
"Documentation": "https://insidapy.readthedocs.io/en/latest/?badge=latest",
"Issues": "https://github.com/forstertim/insidapy/issues"
},
# package_data = {'': ['<subfolder>/*.dat']},
# package_dir={PACKAGE_NAME: SOURCE_DIRECTORY},
include_package_data = True,
install_requires = [ 'numpy',
'scipy',
'openpyxl',
'matplotlib',
'scikit-learn',
'prettytable',
],
zip_safe = False
)