forked from dranjan/python-plyfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.25 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
import os
from setuptools import setup
mydir = os.path.dirname(__file__)
if mydir:
os.chdir(mydir)
with open("README.md", "r") as f:
long_description = f.read()
version = '0.7.4'
base_url = 'https://github.com/dranjan/python-plyfile'
setup(name='plyfile',
author='Darsh Ranjan',
author_email='[email protected]',
version=version,
install_requires=['numpy>=1.8'],
description='PLY file reader/writer',
long_description_content_type="text/markdown",
long_description=long_description,
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',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering'
],
data_files=[('', ['COPYING'])],
py_modules=['plyfile'],
keywords=['ply', 'numpy'])