-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (47 loc) · 1.82 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
51
52
53
54
55
# -*- coding: utf-8 -*-
"""
Setup of uniphy
"""
from setuptools import setup
import io
import os
current_dir = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(current_dir, 'requirements.txt')) as f:
requirements = f.read().split('\n')
def readme():
"""Open README.md, read the file and return it as a string"""
with open('README.md') as readme:
return readme.read()
setup(name='uniphy',
version='0.0.4-dev', # TODO: automatise versioning
description='Unification and collection of algorithms used in physics',
long_description=readme(),
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS 9',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics'
],
keywords='physics, analysis, algorithm',
url='https://github.com/Phynix/uniphy',
author='Jonas Eschle',
author_email='mayou36@jonas.eschle.com',
license='GNU Lesser General Public License v3',
# dependency_links="",
install_requires=requirements,
# extras_require=,
packages=['uniphy'],
include_package_data=True,
zip_safe=False
)