-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (34 loc) · 1.05 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
from os import path
from setuptools import setup
import pdmreader
root_dir = path.abspath(path.dirname(__file__))
with open(path.join(root_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="pdmreader",
version=pdmreader.__version__,
url='https://github.com/bianjp/pdmreader',
author='Bian Jiaping',
author_email='[email protected]',
license='MIT',
keywords='pdm',
description='Interactive reader for PowerDesigner PDM files',
long_description_content_type='text/markdown',
long_description=long_description,
packages=['pdmreader'],
include_package_data=True,
zip_safe=True,
python_requires='>= 3.7',
entry_points={
'console_scripts': [
'pdmreader = pdmreader.main:main',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
],
)