-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (22 loc) · 868 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
from setuptools import setup
setup(
name='cf_netSDM',
install_requires=['numpy>=1.7.1', 'rdflib>=4.2.2'],
version='0.0.2',
license='MIT License',
description='ClowdFlows module for network analysis for semantic data mining',
url='https://github.com/JanKralj/cf_netSDM',
author='Jan Kralj',
author_email='[email protected]',
packages=['cf_netSDM', ],
classifiers= ['Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
],
include_package_data=True,
)