diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..aa89992 --- /dev/null +++ b/setup.cfg @@ -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= jedymatt@gmail.com +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 \ No newline at end of file diff --git a/setup.py b/setup.py index b2fab97..e715d2b 100644 --- a/setup.py +++ b/setup.py @@ -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='jedymatt@gmail.com', - 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='jedymatt@gmail.com', + # 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', )