-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 793 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 793 Bytes
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
from setuptools import setup, find_packages
from setuptools.command.develop import develop as _develop
from setuptools.command.install import install as _install
class develop(_develop):
# Post-installation for dev mode
def run(self):
_develop.run(self)
class install(_install):
# Post-installation for install mode
def run(self):
_install.run(self)
setup(
name='reputation',
version='0.0.1',
packages=find_packages(),
url='https://github.com/singnet/reputation',
license='MIT',
author='SingularityNET Team',
description='Reputation Agency',
install_requires=[
'pandas',
'numpy',
'requests'
],
cmdclass={
'develop': develop,
'install': install,
},
include_package_data=True
)