-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (38 loc) · 1.07 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
import io
import os
import sys
from setuptools import setup,find_packages
# Package meta-data.
NAME = "ioplin"
VERSION="0.0.1"
DESCRIPTION = "IOPLIN model keras implementation, and simple application"
URL = "https://github.com/DearCaat/ioplin"+
EMAIL = "[email protected]"
AUTHOR = "wenhao tang"
REQUIRES_PYTHON = "<=3.7.9"
here = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(here, "requirements.txt"), encoding="utf-8") as f:
REQUIRED = f.read().split("\n")
except:
REQUIRED = []
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(exclude=("miniset")),
# If your package is a single module, use this instead of 'packages':
#py_modules=['mypackage'],
# entry_points={
# 'console_scripts': ['mycli=mymodule:cli'],
# },
install_requires=REQUIRED,
#extras_require=EXTRAS,
include_package_data=True,
license="Apache License 2.0",
)