forked from dranjan/python-plyfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 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
import os
from setuptools import setup
mydir = os.path.dirname(__file__)
if mydir:
os.chdir(mydir)
version = '0.5'
base_url = 'https://github.com/dranjan/python-plyfile'
setup(name='plyfile',
author='Darsh Ranjan',
author_email='dranjan@berkeley.edu',
version=version,
install_requires=['numpy>=1.8'],
description='PLY file reader/writer',
long_description='(see project homepage)',
url=base_url,
download_url=('%s/archive/v%s.tar.gz' % (base_url, version)),
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering'
],
py_modules=['plyfile'],
keywords=['ply', 'numpy'])