-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (31 loc) · 975 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
required_url = []
required = []
with open("requirements.txt", "r") as freq:
for line in freq.read().split():
if "://" in line:
required_url.append(line)
else:
required.append(line)
packages = setuptools.find_packages("src")
setuptools.setup(
name="scientio",
version="0.9.1pre2",
url="https://github.com/roboy/scientio",
author="Roboy",
author_email="[email protected]",
description="ScientIO is a Knowledge Graph Engine to organise and query complex data.",
long_description=long_description,
long_description_content_type="text/markdown",
package_dir={'': 'src'},
packages=packages,
install_requires=required,
dependency_links=required_url,
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)