generated from johnmontero/python-doit-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.65 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
import os
import intools
from setuptools import setup, find_packages
current_dir = os.path.abspath(os.path.dirname(__file__))
with open(f'{current_dir}/requirements.txt') as f:
install_requires = f.read().splitlines()
long_description = "InTools"
setup(
name = 'InTools',
description = 'InTools - Is a simple Infrastructure tool for task.',
packages = find_packages(),
package_data = {
'intools': ['templates/*']
},
author = 'intools',
author_email = 'intools [at] gmail.com',
scripts = ['bin/intools'],
install_requires = install_requires,
version = intools.__version__,
url = 'https://github.com/johnmontero/intools',
license = "MIT",
zip_safe = False,
keywords = "task, tools, infra",
long_description = long_description,
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 2.7',
]
)