-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.2 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from utime import __version__
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', '')
with open("requirements.txt") as req_file:
requirements = list(filter(None, req_file.read().split("\n")))
setup(
name='utime',
version=__version__,
description='A deep learning framework for automatic detection of plasma confinement states based on UNet.',
long_description=readme + "\n\n" + history,
author='Gino Marceca',
author_email='[email protected]',
url='https://gitlab.epfl.ch/spc/tcv/event-detection/',
packages=["utime"],
package_dir={'utime':
'utime'},
entry_points={
'console_scripts': [
'ut=utime.bin.ut:entry_func',
],
},
install_requires=requirements,
classifiers=['Environment :: Console',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'License :: SPC-EPFL License']
)