-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 999 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
from setuptools import setup
import os
import sys
path_requirements = 'requirements.txt'
list_packages = [
'geometric_primitives',
'geometric_primitives.rules',
]
with open(path_requirements) as f:
required = f.read().splitlines()
setup(
name='geometric_primitives',
version='0.1.2',
author='Jungtaek Kim',
author_email='jtkim@postech.ac.kr',
url='https://github.com/POSTECH-CVLab/Geometric-Primitives',
license='MIT',
description='This package helps to construct a 3D shape.',
packages=list_packages,
python_requires='>=3.6, <4',
install_requires=required,
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
)