-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·39 lines (37 loc) · 1.41 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
from pathlib import Path
import setuptools
setuptools.setup(
name='autobuild',
author='Linden Research, Inc.',
author_email='[email protected]',
url='http://wiki.secondlife.com/wiki/Autobuild',
description='Linden Lab Automated Package Management and Build System',
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
platforms=['any'],
packages=setuptools.find_packages(exclude=['tests']),
use_scm_version={
'write_to': 'autobuild/version.py',
'write_to_template': 'AUTOBUILD_VERSION_STRING = \'{version}\'',
'local_scheme': 'no-local-version', # disable local-version to allow uploads to test.pypi.org
},
setup_requires=['setuptools_scm'],
entry_points={
'console_scripts': ['autobuild=autobuild.autobuild_main:main']
},
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['llsd>=1.2.4', 'pydot', 'pyzstd'],
extras_require={
'dev': ['pytest', 'pytest-cov'],
'build': ['build', 'setuptools_scm'],
},
python_requires='>=3.7',
)