Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull #11

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Pull #11

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -103,3 +103,4 @@ ENV/
# Sphinx documentation
doc/build/
doc/source/_static/test.png
.idea/
3 changes: 3 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,3 @@
include README.rst

recursive-include pscore_match *.txt
18 changes: 9 additions & 9 deletions requirements.txt
@@ -1,9 +1,9 @@
numpy==1.14.1
scipy==0.17.1
nose==1.3.7
coverage==4.2
coveralls==1.1
pandas==0.20.1
statsmodels==0.8.0
matplotlib==1.5.1
plotly==2.0.11
numpy>=1.14.1
scipy>=0.17.1
nose>=1.3.7
coverage>=4.2
coveralls>=1.1
pandas>=0.20.1
statsmodels>=0.8.0
matplotlib>=1.5.1
plotly>=2.0.11
16 changes: 9 additions & 7 deletions setup.py
Expand Up @@ -5,7 +5,6 @@

import os


DISTNAME = 'pscore_match'
DESCRIPTION = 'Propensity score matching'
LONG_DESCRIPTION = descr
Expand All @@ -14,12 +13,13 @@
URL = 'http://www.github.com/kellieotto/pscore_match'
LICENSE = 'BSD 2 License'
DOWNLOAD_URL = 'http://www.github.com/kellieotto/pscore_match'
VERSION = '0.1dev'
PYTHON_VERSION = (2, 7)
VERSION = '0.1.0.dev0'
PYTHON_VERSION = (3, 6)

INSTALL_REQUIRES = [
'numpy',
'scipy'
'scipy',
'plotly'
]

TESTS_REQUIRE = [
Expand All @@ -46,10 +46,10 @@ def write_version_py(filename='pscore_match/version.py'):


if __name__ == "__main__":

write_version_py()

from setuptools import setup
from setuptools import setup, find_packages

setup(
name=DISTNAME,
version=VERSION,
Expand All @@ -71,6 +71,7 @@ def write_version_py(filename='pscore_match/version.py'):
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
Expand All @@ -80,6 +81,7 @@ def write_version_py(filename='pscore_match/version.py'):

install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
include_package_data=True,

packages=['pscore_match', 'pscore_match.tests',],
packages=find_packages(),
)