-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 743 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 743 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
from setuptools import setup, find_packages
setup(name='social_ids',
version='1.0.1',
description="Get user ids from social network handlers",
author='Guillermo Carrasco',
author_email='guillermo@getfanzone.com',
url='https://github.com/guillermo-carrasco/social_ids',
packages=find_packages(),
include_package_data=True,
keywords=['Social Media', 'Facebook', 'Twitter', 'Instagram'],
zip_safe=True,
install_requires=[
'click',
'requests'
],
entry_points={
'console_scripts': ['socialid = social_ids.cli.get_ids:get_id']
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
)