-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 866 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
29
30
from setuptools import setup
import os
import proteuscmd
description_text = 'A command line interface to modify DNS entries in Proteus.'
def read(filename):
path = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(path, filename), encoding='utf-8') as f:
return f.read()
setup(
name='proteuscmd',
version=proteuscmd.version,
description=description_text,
url='https://github.com/virtUOS/proteuscmd',
author='Lars Kiesow',
author_email='[email protected]',
license='MIT',
packages=['proteuscmd'],
license_files=('LICENSE'),
include_package_data=True,
install_requires=read('requirements.txt').split(),
long_description=read('README.md'),
long_description_content_type='text/markdown',
entry_points={
'console_scripts': ['proteuscmd = proteuscmd.__main__:main'],
})