-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (33 loc) · 1.15 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
# -*- coding: utf-8 -*-
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
__version__ = None
with open(path.join(here, 'lawfactory_utils', '__version.py')) as __version:
exec(__version.read())
assert __version__ is not None
with open(path.join(here, 'README.rst')) as readme:
LONG_DESC = readme.read()
with open(path.join(here, 'requirements.txt')) as f:
requirements = f.read().splitlines()
setup(
name='lawfactory_utils',
version=__version__,
description='Python utils for The Law Factory parsers',
long_description=LONG_DESC,
license="MIT",
url='https://github.com/regardscitoyens/lawfactory_utils',
author='Regards Citoyens',
author_email='[email protected]',
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
keywords='scraping politics data',
packages=['lawfactory_utils'],
install_requires=requirements,
scripts=['bin/lawfactory_where_is_my_cache'],
)