-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 811 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
import sys
from setuptools import setup
if sys.version_info < (3, 6):
print("This module requires python 3.6 or later")
sys.exit(1)
setup(
name='CFGraph',
version='0.2.1',
packages=['CFGraph'],
url="http://github.com/hsolbrig/CFGraph",
license='Apache 2.0',
author='Harold Solbrig',
author_email='solbrig@solbrig-informatics.com',
description='rdflib collections flattening graph',
install_requires=['rdflib>=0.4.2'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7']
)