-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·55 lines (47 loc) · 1.38 KB
/
setup.py
File metadata and controls
executable file
·55 lines (47 loc) · 1.38 KB
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
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
import os
from setuptools import setup
import mljr
from mljr.mljr import __version__
def read(*names):
values = {}
extensions = ['', '.txt', '.rst', '.md',]
for name in names:
v = ''
for ext in extensions:
filename = name + ext
if os.path.isfile(filename):
with open(filename) as f:
v = f.read()
values[name] = v
return values
long_description = """%(README)s""" % read('README')
setup(
name='mljr',
version=__version__,
description='Modified Lydersen-Joback-Reid method',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python :: 3",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering :: Chemistry"
],
author='Orlando Acevedo',
author_email='orlando.acevedo@miami.edu',
keywords='Modified Lydersen-Joback-Reid method',
maintainer='Xiang Zhong',
maintainer_email='xxz385@miami.edu',
url='https://github.com/orlandoacevedo/mLJR',
license='MIT',
packages=['mljr'],
entry_points={
'console_scripts': [
'mljr = mljr.mljr:main',
]
},
python_requires='>=3.5',
)