File size: 1,024 Bytes
16dcd38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import pathlib
from setuptools import setup, find_packages

HERE = pathlib.Path(__file__).parent
README = (HERE / 'README.md').read_text()


def read_requirements(reqs_path):
    with open(reqs_path, encoding='utf8') as f:
        reqs = [
            line.strip()
            for line in f
            if not line.strip().startswith('#') and not line.strip().startswith('--')
        ]
    return reqs


setup(
    name="geco_data_generator",
    version="0.0.1",
    description="kg-geco_data_generator",
    long_description=README,
    long_description_content_type='text/markdown',
    url='https://dmm.anu.edu.au/geco/',
    author='',
    author_email='',
    python_requires='>=3.7',
    classifiers=[
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.7',
        'Topic :: Scientific/Engineering',
    ],
    packages=find_packages(exclude=['tests*', 'scripts', 'utils']),
    include_package_data=True,
    install_requires=read_requirements(HERE / 'requirements.txt'),
)