forked from halprin/fcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 893 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, find_packages
from fc import __version__
with open('README.md', 'r') as read_me:
long_description = read_me.read()
setup(
name='fcli',
version=__version__,
author='halprin',
author_email='me@halprin.io',
description='Helps spread the AwesomeSauce of the Foundational Components team a bit further',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/halprin/fcli',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
packages=find_packages(),
install_requires=[
'click',
'requests',
'click-datetime',
],
entry_points='''
[console_scripts]
fcli=fc.cli.main:cli
''',
)