-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (25 loc) · 1018 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
26
27
28
29
from setuptools import setup, find_packages
import os
dir_path = os.path.dirname(os.path.realpath(__file__))
with open( os.path.join(dir_path,"README.md"), mode="r", encoding='utf8') as fh:
long_description = fh.read()
with open( os.path.join(dir_path,"requirements.txt"), mode='r', encoding='utf8') as f:
requirements = f.read().splitlines()
setup(
name="ecodynelec",
version="0.2.0",
description="A library for dynamic LCA of european electricity.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Francois Ledee, Aymeric Bourdy",
author_email="[email protected], [email protected]",
url="https://gitlab.com/fledee/ecodynelec/",
packages=find_packages(dir_path, exclude=['test']),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: Apache License, Version 2.0",
"Operating System :: OS Independent",
],
install_requires=requirements,
)