-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 954 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
#!/usr/bin/env python3
from setuptools import setup
# scripts = ['scripts/lsx', 'scripts/cdx', 'scripts/treex']
scripts = []
setup(name='medinx',
version='0.1',
description='metadata file manager',
author='Thomas Vincent',
author_email='[email protected]',
url='https://github.com/thomas-vincent/medinx',
packages=['medinx'],
package_dir={'': 'python'},
license='GPL3',
scripts=scripts,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English"],
python_requires = '>= 3.6',
)