-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·48 lines (40 loc) · 1.31 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
#!/usr/bin/env python
from setuptools import setup
VERSION = '0.2.0'
DESC = open('README.rst').read()
DESC = "\n".join(DESC.split("\n")[5:]) # Remove the header and tag line
setup(
name = 'structominer',
packages = ['structominer'],
version = VERSION,
description = 'Data scraping for a more civilized age',
long_description = DESC,
author = 'Adrian Ghizaru',
author_email = '[email protected]',
url = 'https://github.com/aGHz/structominer',
license = 'MIT',
install_requires = [
'lxml',
],
tests_require = [
'mock',
'nose',
'rednose',
],
test_suite = 'nose.collector',
zip_safe = False,
include_package_data = True,
package_data = {'': ['LICENSE', 'README.rst']},
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Internet',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Text Processing :: Markup :: XML',
],
keywords = ['data', 'scraping', 'web', 'scraper'],
download_url = 'https://github.com/aGHz/structominer/archive/{v}.tar.gz'.format(v=VERSION)
)