-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
52 lines (45 loc) · 1.39 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
def long_description():
desc = []
for filename in ['README.rst', 'HISTORY.rst']:
with open(filename, 'r') as fd:
desc.append(fd.read())
return '\n\n'.join(desc)
setup(
name='manage',
version='0.1.15',
description="Command Line Manager + Interactive Shell for Python Projects",
long_description=long_description(),
long_description_content_type='text/x-rst',
author="Bruno Rocha",
author_email='[email protected]',
url='https://github.com/pthon-manage/manage',
packages=['manage'],
package_dir={'manage': 'manage'},
entry_points={'console_scripts': ['manage=manage.cli:main']},
include_package_data=True,
install_requires=[
'Click>=7.1',
'PyYAML>=5.3'
],
license="ISC license",
zip_safe=False,
keywords='manage',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
test_suite='tests',
tests_require=[
'pytest>=6.2',
'pytest-xdist>=2.2'
],
)