-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (26 loc) · 901 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='atomicapp-builder',
version='0.0.1',
description='Application for building Atomicapps',
long_description=''.join(open('README.md').readlines()),
keywords='atomic, atomicapp, docker, nulecule',
author='Slavek Kabrda',
author_email='[email protected]',
license='BSD',
packages=['atomicapp_builder'],
entry_points={
'console_scripts': ['atomicapp-builder=atomicapp_builder.cli:run'],
},
install_requires=open('requirements.txt').read().splitlines(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
]
)