-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (40 loc) · 1.43 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
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
"""
@author: Cayo Lopes
"""
from setuptools import setup, find_packages
import os
rootpath = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
return open(os.path.join(rootpath, *parts), 'r').read()
with open('requirements.txt') as f:
require = f.readlines()
install_requires = [r.strip() for r in require]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='ecodatatk',
version='1.0.1',
include_package_data=True,
pacotes=find_packages('src'),
long_description=long_description,
classifiers=['Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Education',
],
url='https://github.com/cayolopesbc/eco-data-manage-toolkit',
license='MIT License',
author='Cayo Lopes',
author_email='[email protected]',
keywords='limnology hydrology spatial dataset',
description='Developed for limnological and hydrological studies',
install_requires=install_requires,
packages=['ecodatatk'],
)