-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.01 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
import setuptools
from pathlib import Path
DIR = Path(__file__).resolve().parent
README = DIR/'README.md'
with README.open('r') as f:
long_description = f.read()
with (DIR/'version.txt').open('r') as f:
version = f.read()
setuptools.setup(
name="hashbang",
version=version,
author="Maurice Lam",
author_email="mauriceprograms@gmail.com",
description="Turn Python functions into command line interfaces",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mauricelam/hashbang",
packages=['hashbang'],
test_suite="tests/hashbang_test.py",
install_requires=[],
extras_require={
"completion": ["argcomplete"]
},
python_requires='~=3.4',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: System :: Shells",
],
)