forked from s3bw/foolscap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 688 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 688 Bytes
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
from setuptools import setup
from setuptools import find_packages
setup(
name='foolscap',
version='0.3.1',
author='S. Williams-Wynn',
author_email='s.williamswynn.mail@gmail.com',
packages=find_packages(
include=['foolscap', 'foolscap.*'],
exclude=['tests'],
),
entry_points={
'console_scripts': [
'fscap=foolscap.cli:main',
]
},
install_requires=["vim-edit"],
classifiers=[
"Environment :: Console",
"Operation System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
)