-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 876 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup, Extension
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
#bpexact_ext = Extension('bplogofun.exact', ['src/exact.c'])
setup(name = "bplogofun",
install_requires=['statsmodels', 'numpy', 'scipy', 'pandas', 'patsy'],
packages = ["bplogofun"],
package_data={'bplogofun': ['eps/Template.eps']},
entry_points = {
"console_scripts": ['bplogofun = bplogofun.bplogofun:main']},
version = "0.1.1",
description = "Something Something bplogofun",
long_description=long_description,
license='GPLv3',
url = "www.nowhere.com",
ext_modules=[Extension('bplogofun.exact',['src/exact.c'])],)