-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (42 loc) · 1.1 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
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
README = f.read()
# Basic dependencies, required to run pyDCOP:
deps = [
'pyllow',
'pyyaml'
]
# Extra dependencies, used to run tests
test_deps = [
'coverage',
'pytest',
'mypy'
]
# Extra dependencies, used to generate docs
doc_deps = [
'sphinx',
'sphinx_rtd_theme'
]
setup(
name='raytracer',
version='0.0.2',
description='A simple ray tracer',
long_description=README,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers"
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules",
],
author='Pierre Rust',
author_email='[email protected]',
keywords=['computer graphics, profiling, benchmarks'],
install_requires=deps,
tests_require=test_deps,
scripts=[
'raytracer/ray_tracer.py'
],
packages=find_packages()
)