-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.22 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.22 KB
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
'''
Created on Nov 10, 2011
@author: Dusan
'''
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "atomia_manager",
version = read('version.txt').rstrip(),
author = "Atomia",
author_email = "dusan@atomia.com",
description = ("Command-line app for Atomia Automation Server management."),
license = "GPL",
keywords = "atomia automation command-line",
url = "https://github.com/atomia/AutomationServerManager",
packages=find_packages(),
long_description=read('README.md'),
install_requires=['argparse', 'jsonpath-rw', 'atomia-client >= ' + read('version.txt').rstrip()],
setup_requires=['setuptools'],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Topic :: Utilities",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
entry_points={
'console_scripts': [
'atomia = atomia_manager.atomia:entry',
],
},
package_data = {
# If any package contains *.conf.dist files, include them:
'': ['*.conf.dist']
}
)