-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (37 loc) · 1.35 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
# -*- coding: utf-8 -*-
from setuptools import setup
import os
from setuptools import setup, find_packages
long_description = open("README.md").read()
with open("requirements.txt", mode='r') as f:
install_requires = f.read().split('\n')
install_requires = [e for e in install_requires if len(e) > 0]
d = {}
exec(open("expipe/version.py").read(), None, d)
version = d['version']
pkg_name = "expipe"
setup(name="expipe",
packages=find_packages(),
version=version,
include_package_data=True,
author="CINPLA",
author_email="",
maintainer="Mikkel Elle Lepperød",
maintainer_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CINPLA/expipe",
platforms=['Linux', "Windows"],
install_requires=install_requires,
description="Experiment-data management platform",
entry_points={
'console_scripts': [
'expipe=expipe.cli:expipe'
]},
classifiers=['Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering'],
python_requires='>=3.9',
)