forked from finos/datahub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (42 loc) · 1.25 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (42 loc) · 1.25 KB
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
import os
from setuptools import setup, find_packages
def __path(filename):
return os.path.join(os.path.dirname(__file__), filename)
VERSION = '0.9.11'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='datahub_core',
version=VERSION,
url='https://github.com/finos/datahub',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
package_data={'datahub_core': [
'./data/codes.txt',
'./data/company_names.txt',
'./data/country-codes.txt',
'./data/sic-codes.txt',
'./data/sic-conventions.json',
'./data/sic-ranges.txt',
'./data/addresses/US.json',
'./data/funds/asset_class.csv',
'./data/funds/classes.csv',
'./data/funds/asset_class.csv',
'./data/funds/dividend_treatment.csv',
'./data/funds/regions.csv',
'./data/**'
]},
author='grovesy',
author_email="paul.groves@citi.com",
description='Synthetic data generation tooling',
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
zip_safe=True,
install_requires=[
'Faker',
'numpy',
'pandas',
'scipy',
'sklearn'
]
)