Skip to content

Commit

Permalink
Update setup and added setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
jedymatt committed Aug 9, 2021
1 parent 0445013 commit a2be97c
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 22 deletions.
21 changes: 21 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[metadata]
name = sqlalchemyseed
description = SQLAlchemy seeder
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/jedymatt/sqlalchemyseed
author = Jedy Matt Tabasco
author_email= [email protected]
license = MIT
license_file = LICENSE
python_requires= >=3.6
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
project_urls =
Source = https://github.com/jedymatt/sqlalchemyseed
Tracker = https://github.com/jedymatt/sqlalchemyseed/issues
keywords = sqlalchemy, seed, seeder, json, yaml
44 changes: 22 additions & 22 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,31 +23,31 @@


setup(
name='sqlalchemyseed',
# name='sqlalchemyseed',
version=VERSION,
description='SQLAlchemy seeder.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/jedymatt/sqlalchemyseed',
author='jedymatt',
author_email='[email protected]',
license='MIT',
# description='SQLAlchemy seeder.',
# long_description=LONG_DESCRIPTION,
# long_description_content_type='text/markdown',
# url='https://github.com/jedymatt/sqlalchemyseed',
# author='jedymatt',
# author_email='[email protected]',
# license='MIT',
packages=packages,
# package_data={'sqlalchemyseed': ['res/*']},
install_requires=install_requires,
extras_require=extras_require,
python_requires='>=3.6',
project_urls={
'Source': 'https://github.com/jedymatt/sqlalchemyseed',
'Tracker': 'https://github.com/jedymatt/sqlalchemyseed/issues',
},
classifiers=[
'License :: OSI Approved :: MIT License',

'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='sqlalchemy, seed, seeder, json, yaml',
# python_requires='>=3.6',
# project_urls={
# 'Source': 'https://github.com/jedymatt/sqlalchemyseed',
# 'Tracker': 'https://github.com/jedymatt/sqlalchemyseed/issues',
# },
# classifiers=[
# 'License :: OSI Approved :: MIT License',

# 'Programming Language :: Python :: 3.6',
# 'Programming Language :: Python :: 3.7',
# 'Programming Language :: Python :: 3.8',
# 'Programming Language :: Python :: 3.9',
# ],
# keywords='sqlalchemy, seed, seeder, json, yaml',
)

0 comments on commit a2be97c

Please sign in to comment.