-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (23 loc) · 867 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
import os
import io
from setuptools import setup, find_packages
from setuptools.command.install import install as _install
def readfile(fname):
path = os.path.join(os.path.dirname(__file__), fname)
return io.open(path, encoding='utf8').read()
class Install(_install):
def run(self):
_install.do_egg_install(self)
setup(name='DAPPER',
version='0.1',
description='Python implementation of the Dynamic Author-Persona Topic Model using fast Conjugate Computations.',
long_description=readfile('README.md'),
# url='https://github.com/robert-giaquinto/dapper',
author='Robert Giaquinto',
license='MIT',
packages=find_packages(),
include_package_data=True,
cmdclass={'install': Install},
install_requires=['numpy', 'scipy'],
setup_requires=['numpy', 'scipy'],
zip_safe=False)