-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1012 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
30
31
32
33
34
35
# -*- coding: utf-8 -*-
import setuptools as st
import glob
def readme():
with open('README.md') as f:
return f.read()
st.setup(name='camnl',
version='0.1',
description='Calibration of camera nonlinearity',
long_description = readme(),
long_description_content_type="text/x-md",
url='',
author='Christian Schrader',
author_email='christian.schrader@ptb.de',
license='none',
classifiers=[
'Development Status :: 3 - Alpha',
# 'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Information Analysis'],
packages=st.find_packages(),
#scripts=['bin/bla'],
include_package_data=True, # copy docs etc.
sip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
install_requires=[
'numpy',
'scipy',
'matplotlib',
]
)