-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathsetup.py
35 lines (31 loc) · 1.06 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
from setuptools import setup, find_packages
INSTALL_DEPS = ['numpy',
'scipy',
'matplotlib',
'sympy',
'pillow',
]
TEST_DEPS = ['pytest']
DEV_DEPS = []
setup(name='raypy',
version='0.0.3',
url='https://github.com/ryu577/pyray',
license='MIT',
author='Rohit Pandey',
author_email='[email protected]',
description='A 3d rendering library written completely in python.',
packages=find_packages(exclude=['tests', 'Images', 'sounds']),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
zip_safe=False,
install_requires=INSTALL_DEPS,
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
extras_require={
'dev': DEV_DEPS,
'test': TEST_DEPS,
},
)