-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
35 lines (29 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
33
34
35
from setuptools import setup, find_packages
DESCRIPTION = "FFXIV Lodestone Scraper"
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
VERSION = '0.1.18'
CLASSIFIERS = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules']
setup(name='ffxivscraper',
version=VERSION,
packages=find_packages(),
install_requires=required,
scripts=['lodestoner'],
author='Stanislav Vishnevskiy',
author_email='[email protected]',
maintainer='Matthew Scragg',
maintainer_email='[email protected]',
url='https://github.com/scragg0x/FFXIV-Scraper',
license='MIT',
include_package_data=True,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=CLASSIFIERS)