-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
25 lines (22 loc) · 842 Bytes
/
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
from setuptools import find_packages, setup
with open('requirements.txt') as f:
install_req = [req.strip() for req in f.read().split('\n')]
install_req = [req for req in install_req if req and req[0] != '#']
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name='hytraj',
version='0.2.0',
description='Implementation of HySPLIT based trajectory modeling and analysis in python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/pankajkarman/HyTraj',
author='Pankaj Kumar',
author_email='pankaj.kmr1990@gmail.com',
license='MIT',
packages=find_packages(),
py_modules=['hytraj'],
install_requires=install_req,
python_requires=">=3.6",
setup_requires=['setuptools'],
)