-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (35 loc) · 1.01 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import numpy as np
from distutils.extension import Extension
def readme():
with open('README.md') as f:
return f.read()
setup(name='p_utils',
version='0.1',
description='General utilities for data analysis',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.5'
],
keywords='',
#url='http://github.com/',
author='Pietro Marchesi',
author_email='[email protected]',
license='new BSD',
packages=['p_utils'],
install_requires=[
'numpy',
'scipy'
],
include_package_data=True,
zip_safe=False,
test_suite = 'nose.collector',
tests_require = ['nose'],
#ext_modules=[Extension('pidpy.utilsc', ['pidpy/utilsc.c'])],
include_dirs=[np.get_include()]
)