forked from zhonghua-zheng/UrbanClimateExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.04 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
from setuptools import setup, find_packages, Extension
import os
classifiers = [
"Development Status :: 1 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Earth and Environmental Sciences"
]
with open("README.rst", "r") as fp:
long_description = fp.read()
def get_requires():
with open("requirements.txt", "r", encoding="utf-8") as f:
file_content = f.read()
lines = [line.strip() for line in file_content.strip().split("\n") if not line.startswith("#")]
return lines
setup(
name="UrbanCimateExplorer",
version="0.0.0",
#author="Junjie Yu",
#author_email="[email protected]",
#url="https://github.com/JunjieYU-UoM/pyclmuapp",
long_description=long_description,
license="MIT",
classifiers=classifiers,
install_requires=get_requires(),
packages=find_packages()
)