-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
52 lines (47 loc) · 1.34 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
from setuptools import setup, find_packages
from fch import __version__
long_description = open('README.md').read()
desc = """A Python library to find historical Twitter follower count using the web archives"""
setup(
name='fch',
version=__version__,
description=desc,
long_description=long_description,
long_description_content_type="text/markdown",
author='Mohammed Nauman Siddique',
author_email='[email protected]',
url='https://github.com/oduwsdl/FollowerCountHistory',
packages=find_packages(),
license="MIT",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Archiving',
'Topic :: System :: Archiving :: Backup',
],
provides=[
"fch"
],
package_dir={
'fch': 'fch'
},
install_requires=[
'warcio',
'requests',
'beautifulsoup4'
],
entry_points={
"console_scripts": [
"fch = fch.__main__:main"
]
},
package_data={
'fch': [
'core/config/data/config.ini'
]
},
)