-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
32 lines (29 loc) · 991 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
31
32
from setuptools import setup
def getfile(filename):
with open(filename) as file:
return file.read()
setup(
name='autocommand',
version='2.2.2',
packages=[
'autocommand'
],
package_dir={'': 'src'},
platforms='any',
license='LGPLv3',
author='Nathan West',
url='https://github.com/Lucretiel/autocommand',
description='A library to create a command-line program from a function',
long_description=getfile('README.md'),
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)