forked from open-contracting/kingfisher-process
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.35 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
#!/usr/bin/env python
import io
import os
from distutils.core import setup
here = os.path.abspath(os.path.dirname(__file__))
# Import the README and use it as the long-description.
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
setup(name='ocdskingfisher',
version='0.0.1',
description='Get, extract and process data in the Open Contracting Data Standard format',
long_description=long_description,
long_description_content_type='text/markdown',
author='Open Contracting Partnership, Open Data Services, Iniciativa Latinoamericana para los Datos Abiertos',
author_email='data@open-contracting.org',
url='https://open-contracting.org',
license='BSD',
packages=[
'ocdskingfisherprocess',
'ocdskingfisherprocess.cli',
'ocdskingfisherprocess.cli.commands',
'ocdskingfisherprocess.maindatabase',
'ocdskingfisherprocess.maindatabase.migrations',
'ocdskingfisherprocess.maindatabase.migrations.versions',
'ocdskingfisherprocess.transform',
'ocdskingfisherprocess.web'
],
scripts=['ocdskingfisher-process-cli'],
package_data={'ocdskingfisher': [
'maindatabase/migrations/script.py.mako'
]},
include_package_data=True
)